Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: FFmpeg/FFV1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0036f2f04ce4
Choose a base ref
...
head repository: FFmpeg/FFV1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 27f6cb5a0bfc
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jul 21, 2015

  1. Add missing '*'

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
    michaelni committed Jul 21, 2015
    Copy the full SHA
    0a8e9ae View commit details
  2. update slice count restriction to what is used in the implementation

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
    michaelni committed Jul 21, 2015
    Copy the full SHA
    27f6cb5 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 ffv1.md
4 changes: 2 additions & 2 deletions ffv1.md
Original file line number Diff line number Diff line change
@@ -487,7 +487,7 @@ See [AVI](#references) for more information about chunks.
The Configuration Record extends the sample description box (“moov”, “trak”, “mdia”, “minf”, “stbl”, “stsd”) with a “glbl” box which contains the ConfigurationRecord bitstream.\
See [ISO14496_12](#references) for more information about boxes.
**NumBytes* is defined as the size, in bytes, of the “glbl” box indicated in the box header minus the size of the box header.
**NumBytes** is defined as the size, in bytes, of the “glbl” box indicated in the box header minus the size of the box header.
### In NUT File Format
@@ -831,7 +831,7 @@ MAX_CONTEXT_INPUTS is 5.

### Restrictions

In version 2 and later the maximum slice size in pixels is $\frac{width\centerdot height}{4}$, this is to ensure that fast multithreaded decoding is possible.
In version 2 and later the maximum slice size in pixels is $\frac{width\centerdot height}{4}$, unless the frame is smaller or equal 352x288 this is to ensure that fast multithreaded decoding is possible.

# Changelog